laravel current timestamp

39

laravel current timestamp -

use Carbon\Carbon;
$current_date_time = Carbon::now()->toDateTimeString(); // Produces something like "2019-03-11 12:25:00"

laravel timestamp -

use Carbon\Carbon;
$current_timestamp = Carbon::now()->timestamp; // Produces something like 1552296328

timestamp in model laravel -

$user = User::find(1);
$user->profile_views_count = 123;
$user->timestamps = false;
$user->save();

Comments

Submit
0 Comments